home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue32 / clinic / EXE.DPR < prev    next >
Encoding:
Text File  |  1998-01-05  |  236 b   |  17 lines

  1. program Exe;
  2.  
  3. uses
  4.   Forms,
  5.   ExeU in 'EXEU.PAS' {Form1},
  6.   Importu in 'IMPORTU.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11. {$ifdef Win32}
  12.   Application.Initialize;
  13. {$endif}
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.